Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

optimize cmm shifts and tags #3669

Merged
merged 3 commits into from
Mar 26, 2025
Merged

Conversation

jvanburen
Copy link
Contributor

add some optimizations for shifts and tags in preparation for cmm-scalar-type, which needs these to keep decent performance

@jvanburen jvanburen requested a review from Gbury March 7, 2025 17:58
@jvanburen
Copy link
Contributor Author

Array.length gets compiled worse now, i need to fix that

-      (+ (<< (or (>>u (<< (load_mut int (+a odata/3502 -8)) 8) 17) 1) 1) -1))
+      (+ (or (<< (>>u (<< (load_mut int (+a odata/3502 -8)) 8) 17) 1) 2) -1))

the latter doesn't turn into a lea on x86

@jvanburen jvanburen force-pushed the jvb/optimize-cmm-shifts-and-tags branch 3 times, most recently from cd768b1 to 93513c0 Compare March 10, 2025 21:26
@jvanburen
Copy link
Contributor Author

array length looks strictly better now, the only problems are in cmm-scalar-type, which i'll fix in yet another PR

@jvanburen jvanburen marked this pull request as ready for review March 10, 2025 21:37
Copy link
Contributor

@Gbury Gbury left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR should be good to merge once comment have been adressed/answered.

Copy link
Contributor

@Gbury Gbury left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have a few comments/questions, but as far as code semantics goes, we should be good !

@mshinwell
Copy link
Collaborator

@jvanburen there are review comments waiting for your attention here!

@jvanburen
Copy link
Contributor Author

yes i'm getting to them! Other things came up :/

@jvanburen jvanburen force-pushed the jvb/optimize-cmm-shifts-and-tags branch from 1e6d71b to 3f9e7ad Compare March 24, 2025 15:41
@jvanburen
Copy link
Contributor Author

i just rebased onto main, no new changes

This will be used by a future pr to simplify casting without impacting
performance as much
@jvanburen jvanburen force-pushed the jvb/optimize-cmm-shifts-and-tags branch from 3f9e7ad to 9d7883c Compare March 24, 2025 15:48
@jvanburen
Copy link
Contributor Author

^another rebase

@jvanburen jvanburen marked this pull request as draft March 24, 2025 16:31
@jvanburen
Copy link
Contributor Author

One last performance regression that I can tell:

  let does_not_eliminate_useless_extra_instructions () : bool =
    Obj.repr (Some 3) |> Obj.is_int

cmm:

 (function{../bad_codegen_examples.ml:143,52-99}
  camlBad_codegen_examples__does_not_eliminate_useless_extra_instructions_7_23_code
      (param/948: int)
- (+ (<< (and G:"camlBad_codegen_examples__const_block95" 1) 1) 1))
+ (+ (and (<< G:"camlBad_codegen_examples__const_block95" 1) 2) 1))

leads to

       salq    $1, %rax
       andl    $2, %eax
       incq    %rax

instead of

       andl    $1, %eax
       leaq    1(%rax,%rax), %rax

@jvanburen
Copy link
Contributor Author

I think i fixed these regressions by removing some "optimizations" that kept us from moving shifts outward

@jvanburen jvanburen marked this pull request as ready for review March 24, 2025 18:20
@mshinwell mshinwell added the cmm Cmm language / helpers changes label Mar 25, 2025
@jvanburen jvanburen merged commit f523089 into main Mar 26, 2025
22 checks passed
@jvanburen jvanburen deleted the jvb/optimize-cmm-shifts-and-tags branch March 26, 2025 13:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cmm Cmm language / helpers changes
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants